func runtime.toRType

39 uses

	runtime (current package)
		alg.go#L145: 		panic(errorString("hash of unhashable type " + toRType(t).string()))
		alg.go#L172: 		panic(errorString("hash of unhashable type " + toRType(t).string()))
		alg.go#L249: 		panic(errorString("hash of unhashable type " + toRType(t).string()))
		alg.go#L307: 		panic(errorString("comparing uncomparable type " + toRType(t).string()))
		alg.go#L324: 		panic(errorString("comparing uncomparable type " + toRType(t).string()))
		error.go#L47: 		inter = toRType(e._interface).string()
		error.go#L49: 	as := toRType(e.asserted).string()
		error.go#L53: 	cs := toRType(e.concrete).string()
		error.go#L58: 			if toRType(e.concrete).pkgpath() != toRType(e.asserted).pkgpath() {
		error.go#L279: 	typestring := toRType(eface._type).string()
		heapdump.go#L198: 	rt := toRType(t)
		iface.go#L54: 		name := toRType(&inter.Type).nameOff(inter.Methods[0].Name)
		iface.go#L222: 		itype := toRType(&inter.Type).typeOff(i.Typ)
		iface.go#L223: 		name := toRType(&inter.Type).nameOff(i.Name)
		iface.go#L231: 			rtyp := toRType(typ)
		mbitmap.go#L975: 		print("runtime: type=", toRType(typ).string(), "\n")
		mbitmap.go#L1425: 		println("runtime: typeBitsBulkBarrier with type ", toRType(typ).string(), " of size ", typ.Size_, " but memory size", size)
		mbitmap.go#L1889: 			print("runtime: type=", toRType(et).string(), "\n")
		mcheckmark.go#L242: 				print("Value of type ", toRType(ctx.ptrType).string(), " at ", hex(r.ptr), "\n")
		mfinal.go#L439: 		throw("runtime.SetFinalizer: first argument is " + toRType(etyp).string() + ", not pointer")
		mfinal.go#L494: 		throw("runtime.SetFinalizer: second argument is " + toRType(ftyp).string() + ", not a function")
		mfinal.go#L498: 		throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string() + " because dotdotdot")
		mfinal.go#L501: 		throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string())
		mfinal.go#L524: 	throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string())
		panic.go#L632: 			throw(text + ": type " + toRType(efaceOf(&r)._type).string())
		pinner.go#L112: 		panic(errorString("runtime.Pinner: argument is not a pointer: " + toRType(etyp).string()))
		plugin.go#L85: 		t := toRType((*_type)(unsafe.Pointer(md.types))).typeOff(ptab.typ) // TODO can this stack of conversions be simpler?
		runtime1.go#L700: 	return unsafe.Pointer(toRType((*_type)(rtype)).typeOff(typeOff(off)))
		runtime1.go#L715: 	return toRType((*_type)(rtype)).textOff(textOff(off))
		runtime1.go#L729: 	return unsafe.Pointer(toRType((*_type)(rtype)).typeOff(typeOff(off)))
		tracetype.go#L49: 	typName := toRType(typ).string()
		type.go#L19: 	return toRType(typ).string()
		type.go#L495: func toRType(t *abi.Type) rtype {
		type.go#L529: 	rt, rv := toRType(t), toRType(v)